home *** CD-ROM | disk | FTP | other *** search
- on PlayActiveVideo pauseIt
- global givState, givBASEMONITORSPRITE, givCONTROLPANELSPRITE, givMAINMONITORSPRITE, givEDITTEXTBOXSPRITE, gSIEventQ, gSIFlush, gSISystem, givPlayingQSL, exitFrame, givMainMonitorRefreshFlag
- MessagePut("play active video")
- set mon to the activeMonitor of givState
- set givPlayingQSL to 1
- set givMainMonitorRefreshFlag to 1
- if count(the questionSelectList of givState) < 1 then
- set clipID to GetClipID(mon)
- if clipID = "none" then
- MessagePut("no clip for active monitor")
- exit
- end if
- if mon = 3 then
- MessagePut("cannot play a transition!")
- exit
- end if
- set the activeVideoID of givState to clipID
- set stopMe to PlayClip(clipID, 0, pauseIt)
- if stopMe = 1 then
- MessagePut("clip stopped in middle")
- else
- MessagePut("clip ended normally")
- end if
- if the mode of givState = #play then
- set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play mode play button"
- set the castNum of sprite (givCONTROLPANELSPRITE + 10) to the number of cast "play mode stop button"
- updateStage()
- else
- set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play button"
- set the castNum of sprite (givCONTROLPANELSPRITE + 10) to the number of cast "stop button"
- updateStage()
- end if
- else
- if mon = 3 then
- MessagePut("cannot play a transition!")
- exit
- end if
- if the selectListPlaybackPtr of givState > count(the questionSelectList of givState) then
- set the selectListPlaybackPtr of givState to 0
- exit
- end if
- if the selectListPlaybackPtr of givState = 0 then
- set the selectListPlaybackPtr of givState to 1
- end if
- set clipID to getAt(GetMonitorListByNumber(mon), getAt(the questionSelectList of givState, the selectListPlaybackPtr of givState))
- MessagePut("playing item" && the selectListPlaybackPtr of givState && "of the question select list, id" && clipID)
- set stopMe to PlayClip(clipID, 0, pauseIt)
- set givMainMonitorRefreshFlag to 1
- if stopMe = 1 then
- MessagePut("clip stopped in middle")
- if the mode of givState = #play then
- set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play mode play button"
- updateStage()
- else
- set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play button"
- updateStage()
- end if
- set the selectListPlaybackPtr of givState to 0
- exit
- else
- MessagePut("clip ended normally")
- if the mode of givState = #play then
- set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play mode play button"
- updateStage()
- else
- set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play button"
- updateStage()
- end if
- set the selectListPlaybackPtr of givState to the selectListPlaybackPtr of givState + 1
- PlayActiveVideo(pauseIt)
- abort()
- end if
- end if
- end
-
- on PlayClipNext
- global givState, gSIEventQ, gSIFlush, gSISystem
- set ct to count(the questionSelectList of givState)
- set tmp to the selectListPlaybackPtr of givState
- if ct > 0 then
- set tmp to tmp + 1
- if tmp > ct then
- set tmp to 1
- end if
- MessagePut("incrementing selectListPlaybackPtr to " & tmp)
- set the selectListPlaybackPtr of givState to tmp
- SetMonitorPtr(givState, the activeMonitor of givState, getAt(the questionSelectList of givState, tmp))
- end if
- if the activeVideoMode of givState = #play then
- MessagePut("stop the running movie...")
- EndBufferingEvents()
- DVPause()
- PlayActiveVideo(#play)
- MessagePut("abort called after next clip started -- play")
- abort()
- end if
- if the activeVideoMode of givState = #pause then
- EndBufferingEvents()
- PlayActiveVideo(#pause)
- MessagePut("abort called after next clip started -- pause")
- abort()
- end if
- end
-
- on PlayClipPrevious
- global givState, gSIEventQ, gSISystem
- set ct to count(the questionSelectList of givState)
- set tmp to the selectListPlaybackPtr of givState
- if ct > 0 then
- set tmp to tmp - 1
- if tmp = 0 then
- set tmp to ct
- end if
- MessagePut("decrementing selectListPlaybackPtr to " & tmp)
- set the selectListPlaybackPtr of givState to tmp
- SetMonitorPtr(givState, the activeMonitor of givState, getAt(the questionSelectList of givState, tmp))
- end if
- if the activeVideoMode of givState = #play then
- MessagePut("stop the running movie...")
- EndBufferingEvents()
- DVPause()
- set the activeVideoMode of givState to #pause
- PlayActiveVideo(#play)
- MessagePut("abort called after next clip started -- play")
- abort()
- end if
- if the activeVideoMode of givState = #pause then
- EndBufferingEvents()
- PlayActiveVideo(#pause)
- MessagePut("abort called after next clip started -- pause")
- abort()
- end if
- end
-